home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 1
/
Merciful - Disc 1.iso
/
software
/
t
/
tool_manager
/
toolmanagerv2.1.lha
/
ToolManager
/
Scripts
/
PlaySample.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-05-16
|
1KB
|
26 lines
/*********************************************************/
/* */
/* rexx:PlaySample.rexx V1.0 */
/* */
/* ARexx script for UPD sound daemon */
/* */
/* © 1991 Stefan Becker */
/* */
/* ToolManager configuration file entry for this script: */
/* */
/* CLI: */
/* Alias = Play Sample */
/* RealName = rx PlaySample */
/* # */
/* */
/*********************************************************/
/* Parse command line */
PARSE ARG cmdline
/* Send message to UPD's ARexx port */
ADDRESS PLAY 'file ' cmdline
/* Exit script */
RETURN 0